home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / tools / lu62 / port / msg.h < prev    next >
C/C++ Source or Header  |  1996-07-10  |  1KB  |  26 lines

  1. struct msg {
  2.      char type       ;       /* type element:MAJ,DLC,NODE  */
  3.      char res1[3]    ;       /* reserved                   */
  4.      char lenname    ;       /* name length                */
  5.      char *pname     ;       /* name ptr                   */
  6.      char lentyp     ;       /* typ length                 */
  7.      char *ptyp      ;       /* typ ptr : APPL,7920L,7920R */
  8.      char lenact     ;       /* active/inactive length     */
  9.      char *pact      ;       /* active/inactive ptr        */
  10.      char flsess     ;       /* number of session flag     */
  11.      char nsess      ;       /* count of session           */
  12.      char flactno    ;       /* count of active flag       */
  13.      char nactno     ;       /* count of active            */
  14.      char flnauno    ;       /* nau count flag             */
  15.      char *pnauno    ;       /*nau count ptr               */
  16.      };
  17. #define MAJNODE  6           /*                            */
  18. #define DLC      3           /*                            */
  19. #define NODE     4           /*                            */
  20. #define FLSESS   0x82        /*                            */
  21. #define FLACTNO  0x82        /*                            */
  22. #define FLNAUNO  0x81        /*                            */
  23. #define CODEMAJ  115         /*                            */
  24. #define CODEDLC  116         /*                            */
  25. #define CODENODE 117         /*                            */
  26.